home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / READMEFiles / ObjDB.README < prev    next >
Text File  |  1992-08-29  |  958b  |  41 lines

  1. README file for ObjDB and Test.m
  2.  
  3. The ObjDB.[h=m] files are the basis for a simple relational database
  4. implemented in Objective C.  It was originally developed for use from
  5. the command line and presently output to the terminal.  The program
  6. Test.m shows a front end driver for using from the command line.
  7.  
  8. If you type make
  9. an application ObjDB will be created.
  10.  
  11. To run , create a database, etc. the following would be carried out:
  12.  
  13. ObjDB
  14.  
  15. >init TestObj
  16. >load test.input
  17. >show structure
  18. >show status
  19. >find LN baggett
  20. >search FN = karen
  21. >list isns
  22. >print isns
  23. >help
  24. >close
  25. >quit
  26.  
  27. to open and use the database
  28.  
  29. ObjDB TestObj
  30. >show structure
  31. >find ALL
  32. >list isns
  33. >quit
  34.  
  35. Once version 3.0 is out, the internal indexing will be changed to use
  36. the new indexing methods and the object will be converted to function completely within a windowing environment, i.e. not use terminal for input/output.
  37.  
  38. Comments and suggestions appreciated to:
  39. woo@ornl.gov
  40.  
  41. J. W. Wooten